轉大寫:字串.upper()
轉小寫:字串.lower()
a = 'good'
b = 'morning'
print(a.upper())
# GOOD
print(a.lower(), b.upper())
# good MORNING
用法 : 字串.replace ( 舊內容, 新內容, 最大替換次數)
cart = 'book, water, juice, cap'
print(cart.replace(',', '!'))
# book! water! juice! cap
print(cart.replace(',', '!', 1))
# book! water, juice, cap
cart1 = 'easy'
print(cart1.replace('e', 'l', 1))
# lasy
用法 : 字串.split ( 分隔符號, 最大分隔次數 )
shopping = 'apple, car, glasses'
print(shopping.split(','))
# ['apple', ' car', ' glasses']
print(shopping.split(',', 1))
# ['apple', ' car, glasses']
a = 'Good morning!'
print(a.split())
# ['Good', 'morning!']
print(a.split(' '))
# ['Good', 'morning!']
print(a.split(' '))
# ['Good morning!']
說明 | 程式指令 |
---|---|
轉換大小寫 | 字串.upper ( )、字串.lower ( ) |
替換字元 | 字串.replace( 舊內容, 新內容, 最大替換次數 ) |
分隔字母 | 字串.replace( 舊內容, 新內容, 最大替換次數 ) |